home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2003-134.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  71 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12386);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CVE-2003-0124");
  13.  
  14.  name["english"] = "RHSA-2003-134: man";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated man packages fix a minor security vulnerability.
  21.  
  22.   The man package includes tools for finding information and documentation
  23.   about commands on a system.
  24.  
  25.   Versions of man before 1.51 have a bug where a malformed man file can cause
  26.   a program named "unsafe" to be run. To exploit this vulnerability a local
  27.   attacker would need to be able to get a victim to run man on a carefully
  28.   crafted man file, and for the attacker to be able to create a file called
  29.   "unsafe" that will be on the victim\'s default path.
  30.  
  31.   Users of man can upgrade to these erratum packages which contain a patch to
  32.   correct this vulnerability. These erratum packages also contain fixes for
  33.   a number of other bugs.
  34.  
  35.  
  36.  
  37.  
  38. Solution : http://rhn.redhat.com/errata/RHSA-2003-134.html
  39. Risk factor : High';
  40.  
  41.  script_description(english:desc["english"]);
  42.  
  43.  summary["english"] = "Check for the version of the man packages";
  44.  script_summary(english:summary["english"]);
  45.  
  46.  script_category(ACT_GATHER_INFO);
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  49.  family["english"] = "Red Hat Local Security Checks";
  50.  script_family(english:family["english"]);
  51.  
  52.  script_dependencies("ssh_get_info.nasl");
  53.  
  54.  script_require_keys("Host/RedHat/rpm-list");
  55.  exit(0);
  56. }
  57.  
  58. include("rpm.inc");
  59. if ( rpm_check( reference:"man-1.5i2-7.21as.0", release:"RHEL2.1") )
  60. {
  61.  security_hole(0);
  62.  exit(0);
  63. }
  64.  
  65. if ( rpm_exists(rpm:"man-", release:"RHEL2.1") )
  66. {
  67.  set_kb_item(name:"CVE-2003-0124", value:TRUE);
  68. }
  69.  
  70. set_kb_item(name:"RHSA-2003-134", value:TRUE);
  71.